Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Required range:
0 <= x <= 100Required range:
x >= 0curl --request GET \
--url https://api.hyperline.co/v1/subscriptions/templates \
--header 'Authorization: Bearer <token>'{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0,
"approximateCount": false
},
"data": [
{
"id": "subt_7gdusOkqr5L0B8",
"name": "Starter",
"description": "Starter pack",
"created_at": "2025-11-30T18:24:34.473Z",
"updated_at": "2025-11-30T18:24:34.473Z",
"configurations": []
}
]
}Retrieve all existing subscription templates.
curl --request GET \
--url https://api.hyperline.co/v1/subscriptions/templates \
--header 'Authorization: Bearer <token>'{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0,
"approximateCount": false
},
"data": [
{
"id": "subt_7gdusOkqr5L0B8",
"name": "Starter",
"description": "Starter pack",
"created_at": "2025-11-30T18:24:34.473Z",
"updated_at": "2025-11-30T18:24:34.473Z",
"configurations": []
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
0 <= x <= 100x >= 0Was this page helpful?